home *** CD-ROM | disk | FTP | other *** search
- /*
- * Generated by the NeXT Interface Builder.
- */
-
- #import <stdlib.h>
- #import <appkit/Application.h>
- #import "PlotDelegate.h"
- #import <defaults.h> /* for NXArgc */
-
- void main(int argc, char *argv[]) {
- NXApp = [Application new];
- [NXApp loadNibSection:"nxyplot.nib" owner:NXApp];
- if (NXArgc > 1) { /* if command line args there, snarf them */
- [[NXApp delegate] getArgs]; /* in PlotDelegate */
- }
- [NXApp run];
- [NXApp free];
- exit(0);
- }
-